home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 011 / mouses.arc / M_FC.MSC < prev    next >
Encoding:
Text File  |  1986-08-28  |  5.7 KB  |  206 lines

  1. ;
  2. ;    FlashCalc Pop-up Menu Configuration
  3. ;
  4. Comment     ("Configured for FlashCalc")
  5.  
  6. ;
  7. ;    Parameters
  8. ;
  9. Sensitivity    (20, 8)     ; (Xinc, Yinc)
  10. Hysteresis    (4, 3)        ; (AutoX, AutoY)
  11. ReverseVideo    (Yes)        ; Menu is displayed in reverse video
  12. FixedMenu    (Yes)        ; Menu is in a fixed position
  13. MenuCenter    (70,14)     ; (Col, Row) of menu center
  14. EnableBeep    (Yes)        ; Beeps if wrong button pressed with menu up
  15. EnableKbdInt    (Yes)        ; Enable keyboard interrupt
  16.  
  17. ;
  18. ;    Cursor Definitions
  19. ;
  20. ArrowKeys: Cursor
  21. (
  22.     Left    ([Left])
  23.     Right    ([Right])
  24.     Up    ([Up])
  25.     Down    ([Down])
  26. )
  27.  
  28. ;
  29. ;    Button Definitions
  30. ;
  31. LBM:    Button    (Menu(Main))        ; Left button, Main Menu
  32. LBC:    Button    (Menu(Calc))        ; Left button, Calc Menu
  33. LBR:    Button    (Menu(Repl))        ; Left button, Replicate Menu
  34. MB:    Button    (Keys([Enter]))     ; Middle button
  35. RB:    Button    (Keys([Esc]))        ; Right button
  36.  
  37. ;
  38. ;    Menu Definitions
  39. ;
  40. Main: Menu
  41. (
  42.     Title    ("Main")
  43.     Item    ("Calc Menu",           Menu(Calc), Button(LBC))
  44.     Item    ("Attribute Menu",      Keys("/A"]),Menu(Attrib))
  45.     Item    ("Delete Menu",         Menu(Delete))
  46.     Item    ("Insert Menu",         Menu(Insert))
  47.     Item    ("Window Menu",         Menu(Window))
  48.     Item    ("Title Menu",          Menu(Title))
  49.     Item    ("Quit Menu",           Menu(Quit))
  50.     Item    ("Format Menu",         Keys("/F"),Menu(Format))
  51.     Item    ("Global Menu",         Keys("/G"),Menu(Global))
  52.     Item    ("Replicate Menu",      Keys("/R"),Menu(Repl),Button(LBR))
  53.     Item    ("Storage",             Keys("/S"))
  54.     Item    ("Print",               Keys("/P"))
  55.     Item    ("Move",                Keys("/M"))
  56.     Item    ("Repeating Label",     Keys("/-"))
  57.     Item    ("Edit",                Keys("/E"))
  58.     Item    ("Blank",               Keys("/B"[Enter]))
  59.     Item    ("Clear",               Keys("/C"))
  60.     Item    ("Hardware",            Keys("/H"))
  61.     Item    ("Yes",                 Keys("Y"))
  62.     Item    ("Home",                Keys([Home]))
  63.     Item    ("Backspace",           Keys([Backspace]))
  64.     Item    ("Cancel",              Keys([Esc]))
  65. )
  66.  
  67. Quit: Menu
  68. (
  69.     Title    ("Quit")
  70.     Item    ("Return",              Keys("C"))
  71.     Item    ("Set Options",         Keys("O"))
  72.     Item    ("Exit Flashcalc",      Keys("B"))
  73.     Item    ("Cancel",              Keys([Esc]))
  74. )
  75.  
  76. Repl: Menu
  77. (
  78.     Title    ("Replicate")
  79.     Item    ("No Change",           Keys("N"),Button(LBM))
  80.     Item    ("Relative",            Keys("R"),Button(LBM))
  81.     Item    ("(",                   Keys("("))
  82.     Item    ("Attributes",          Keys("A"))
  83.     Item    ("Formats",             Keys("F"))
  84.     Item    ("Refs - No change",    Keys("N"))
  85.     Item    ("Refs - Relative",     Keys("R"))
  86.     Item    ("Displayed Values/Labels",Keys("V"))
  87.     Item    ("Contents",            Keys("C"))
  88.     Item    (")",                   Keys(")"),Button(LBM))
  89.     Item    ("Cancel",              Keys([Esc]),Button(LBM))
  90. )
  91.  
  92. Calc: Menu
  93. (
  94.     Title    ("Calc")
  95.     Item    ("Main Menu",           Menu(Main), Button(LBM))
  96.     Item    ("@Sum(",               Keys("@Sum("))
  97.     Item    ("Comma",               Keys(","))
  98.     Item    (".",                   Keys("."))
  99.     Item    (")",                   Keys(")"))
  100.     Item    ("(",                   Keys("("))
  101.     Item    ("+",                   Keys("+"))
  102.     Item    ("-",                   Keys("-"))
  103.     Item    ("*",                   Keys("*"))
  104.     Item    ("/",                   Keys("/"))
  105.     Item    ("^",                   Keys("^"))
  106.     Item    ("Edit",                Keys("/E"))
  107.     Item    ("Recalc",              Keys("!"))
  108.     Item    ("Cancel",              Keys([Esc]))
  109. )
  110.  
  111. Window: Menu
  112. (
  113.     Title    ("Window")
  114.     Item    ("Change Window",       Keys(";"))
  115.     Item    ("Horizontal",          Keys("/WH"))
  116.     Item    ("Vertical",            Keys("/WV"))
  117.     Item    ("One Window",          Keys("/W1"))
  118.     Item    ("Synchronized",        Keys("/WS"))
  119.     Item    ("Unsynchronized",      Keys("/WU"))
  120. )
  121.  
  122.  
  123. Title: Menu
  124. (
  125.     Title    ("Title")
  126.     Item    ("Horizontal",          Keys("/TH"))
  127.     Item    ("Vertical",            Keys("/TV"))
  128.     Item    ("Both",                Keys("/TB"))
  129.     Item    ("No Title",            Keys("/TN"))
  130. )
  131.  
  132. Format: Menu
  133. (
  134.     Title    ("Format")
  135.     Item    ("General",             Keys("G"))
  136.     Item    ("Integer",             Keys("I"))
  137.     Item    ("Currency",            Keys("$"))
  138.     Item    ("Left",                Keys("L"))
  139.     Item    ("Right",               Keys("R"))
  140.     Item    ("Graph",               Keys("*"))
  141.     Item    ("Default",             Keys("D"))
  142.     Item    ("No Decimal Place",    Keys("0"))
  143.     Item    ("1 Decimal Place ",    Keys("1"))
  144.     Item    ("2 Decimal Places",    Keys("2"))
  145.     Item    ("3 Decimal Places",    Keys("3"))
  146.     Item    ("4 Decimal Places",    Keys("4"))
  147.     Item    ("5 Decimal Places",    Keys("5"))
  148.     Item    ("6 Decimal Places",    Keys("6"))
  149.     Item    ("Cancel",              Keys([Esc]))
  150. )
  151.  
  152. Global: Menu
  153. (
  154.     Title    ("Global")
  155.     Item    ("Attributes",          Menu(Attrib))
  156.     Item    ("Column Width",        Keys("C"))
  157.     Item    ("Recalc Order Rows",   Keys("OR"))
  158.     Item    ("Recalc Order Columns",Keys("OC"))
  159.     Item    ("Recalc Auto",         Keys("RA"))
  160.     Item    ("Recalc Manual",       Keys("RM"))
  161.     Item    ("Format",              Menu(Format))
  162.     Item    ("Cancel",              Keys([Esc]))
  163. )
  164.  
  165. Attrib: Menu
  166. (
  167.     Title    ("Attribute")
  168.     Item    ("Default",             Keys("D"))
  169.     Item    ("All Data",            Keys("A"))
  170.     Item    ("Only Labels",         Keys("L"))
  171.     Item    ("Only Values",         Keys("V"))
  172.     Item    ("Display Comma",       Keys(","))
  173.     Item    ("Display & Protect",   Keys(";"))
  174.     Item    ("Expression",          Keys("E"))
  175.     Item    ("Protect Cell",        Keys("P"))
  176.     Item    ("Hide",                Keys("H"))
  177.     Item    ("Cancel",              Keys([Esc]))
  178. )
  179.  
  180. Insert: Menu
  181. (
  182.     Title    ("Insert")
  183.     Item    ("Row",                 Keys("/IR"))
  184.     Item    ("Column",              Keys("/IC"))
  185. )
  186.  
  187. Delete: Menu
  188. (
  189.     Title    ("Delete")
  190.     Item    ("Row",                 Keys("/DR"))
  191.     Item    ("Column",              Keys("/DC"))
  192. )
  193.  
  194.  
  195. ;
  196. ;    Mouse Definition
  197. ;
  198. Mouse
  199. (
  200.     Left    (LBM)
  201.     Middle    (MB)
  202.     LeftRight(MB)
  203.     Right    (RB)
  204.     Cursor    (ArrowKeys)
  205. )
  206.